home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 9636 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1012 b 

  1. Path: inforamp.net!ts1-10
  2. From: rmorin@inforamp.net (Randy Charles Morin)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Help for beginner of OWC++
  5. Date: Sun, 03 Mar 96 06:56:31 GMT
  6. Organization: MiddleWorld SoftWare
  7. Message-ID: <4hbfql$899@sam.inforamp.net>
  8. References: <96061.093640IO92118@MAINE.MAINE.EDU>
  9. NNTP-Posting-Host: ts1-10.tor.inforamp.net
  10. X-Newsreader: News Xpress Version 1.0 Beta #4
  11.  
  12. In article <96061.093640IO92118@MAINE.MAINE.EDU>,
  13.    <IO92118@MAINE.MAINE.EDU> wrote:
  14. >I am learning ObjectWindow.
  15. >I try the first sample program in bc4.52.
  16. >compiler always tell me can't open <owl.h>.
  17. >I think I should do something to open <owl.h>, but I don't know how.
  18. >Any help is appreciated.
  19. >Thank you!
  20.  
  21. It is also convention to specify the include for owl headers with the prefixed 
  22. directory from the primary include directory.  I think my mind just went to 
  23. sleep.  That first sentence is awful.  Anyhow, change the include statement to 
  24. something like...
  25.     #include <owl/owl.h>
  26. from
  27.     #include <owl.h>
  28.  
  29. Agrivar
  30.